'Declaration
Public Overloads Sub SetByteArrayValue( _ ByVal byteArray() As Byte, _ ByVal sizeInBits As Integer _ )
'Usage
Dim instance As OpaqueData Dim byteArray() As Byte Dim sizeInBits As Integer instance.SetByteArrayValue(byteArray, sizeInBits)
public void SetByteArrayValue( byte[] byteArray, int sizeInBits )
public: void SetByteArrayValue( array<byte>^ byteArray, int sizeInBits )
Parameters
- byteArray
- The value expressed as array of bytes.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - sizeInBits
- Size in bits of the resulting value.
Valid values of this parameter are in the range from
0
to2147483647 (Int32.MaxValue)
.